-
-
Notifications
You must be signed in to change notification settings - Fork 965
Add emergent synths #2518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
ethancrawford
wants to merge
11
commits into
sonic-pi-net:dev
from
ethancrawford:add_emergent_synths
Closed
Add emergent synths #2518
ethancrawford
wants to merge
11
commits into
sonic-pi-net:dev
from
ethancrawford:add_emergent_synths
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3fae00a to
f358dd2
Compare
f358dd2 to
42f2885
Compare
42f2885 to
ead45a3
Compare
1d0644c to
794c186
Compare
91086d6 to
c89bdce
Compare
f6505a8 to
9b9efb4
Compare
9b9efb4 to
61b4cb4
Compare
61b4cb4 to
488f10d
Compare
This adds the synthdefs as well as the supporting files and code.
The docs, synthdef files, and UGens have been updated. Still to come are prebuilt binaries of the UGens for 32 bit Windows, and MacOS.
This allows validations for co-dependent synth opts, where valid values for one opt depend on the values of another. Extra handling has also been added for the array value of the :automatone synth's initial_row: opt to allow checking the validity of each of the array items.
The default value of the note_mod_source: opt is more interesting when set to 3.
This add the source into the GUI external components folder along with the necessary updates to the existing build scripts.
TODO: pass extra UGens path to scsynth on Linux
The recent changes to separate api files into a separate directory and restructure the app tree mean that it has been necessary to move these supercollider plugin related files to match.
This is apparently just an optional extra for increased performance on specific types of hardware. It's possibly not needed, and may not be supported on platforms such as the Raspberry Pi. If necessary, we can potentially add it back in in a targeted manner.
This adds instructions to pre-build the emergent behaviour synth Ugen plugins on mac, and updates the corresponding instructions on Linux to account for the new path to the native plugins.
The hope is to distribute these synths with the upcoming v4.0 release, so the version introduced data have been updated. Also, some code indentation has been fixed.
This brings the script into line with previous changes made by Sam.
488f10d to
e2827dd
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR includes changes that add two new Synths to Sonic Pi, that both generate sound by running simulations that emulate emergent behaviour:
:automatoneuses an elementary cellular automaton algorithm in combination with additive synthesis to generate a series of combined frequency partials that can be manipulated in various ways in the frequency domain.:flockuses a flocking algorithm to generate a series of frequencies that are modulated in one of several ways by the simulation.Several changes have been necessary to introduce these new synths:
Several things remain to be done before I consider the new synths ready to release:
Note that the large number of files in this PR is partially to do with the addition of bits of SuperCollider's source code - various header files that uGen development appears to depend on.
Note also that this is currently marked as a draft PR, as there may be several tweaks that may be desired as mentioned above - but I can "un-draft" it if preferred.